home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / cpu100.zip / COMP.BAT next >
DOS Batch File  |  1993-04-15  |  317b  |  18 lines

  1. @echo off
  2. cls
  3. if exist *.~* del *.~*
  4. if exist *.bak del *.bak
  5. bcc -ms -2 -k -G -C -j1 -g10 -k -d -a -O1 -Z -I\borpp -L\borpp test.c small.lib
  6. if errorlevel==1 goto ERR
  7. goto RUN
  8. :ERR
  9. echo\ 
  10. echo\        Error...compilation not complete..!
  11. echo\ 
  12. goto QUIT
  13. :RUN
  14. if exist test.obj del test.obj
  15. cls
  16. test
  17. :QUIT
  18.